Package com.iqbon.jcms.service.quartz

Source Code of com.iqbon.jcms.service.quartz.FTPPushJobTest

package com.iqbon.jcms.service.quartz;

import junit.framework.TestCase;

import com.iqbon.jcms.domain.FtpSetting;

public class FTPPushJobTest extends TestCase {

  protected void setUp() throws Exception {
    super.setUp();
  }

  protected void tearDown() throws Exception {
    super.tearDown();
  }

  public void testFTPPushJob() {
    FtpSetting ftp = new FtpSetting();
    ftp.setFtpIp("54.244.115.171");
    ftp.setFtpPath("\\");
    ftp.setUsername("webapp");
    ftp.setPassword("da#@I*O(");
    ftp.setFtpPath("xiaoshuo");
    FTPPushJob job = new FTPPushJob(ftp);
    job.run1();
  }

}
TOP

Related Classes of com.iqbon.jcms.service.quartz.FTPPushJobTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.